/* General Styles */
body {
    background: linear-gradient(135deg, #ffeb3b, #ff5722); /* Vibrant gradient */
    font-family: 'Comic Sans MS', 'Arial', sans-serif; /* Kid-friendly font */
    margin: 0;
    overflow-x: hidden; /* Prevents horizontal scrolling */
    color: #333;
    min-height: 100vh; /* Ensures full viewport height */
}

/* Sidebar Navigation */
.sidebar {
    width: 200px; /* Reduced for compactness */
    height: 100vh;
    background: #2196f3; /* Bright blue */
    position: fixed;
    top: 0;
    left: -250px;
    padding-top: 60px;
    transition: left 0.4s ease-in-out;
    box-shadow: 5px 0 15px rgba(0, 0, 0, 0.3);
    border-right: 5px solid #000;
    z-index: 1001; /* Ensure it stays above content on mobile */
    overflow-y: auto; /* Allow vertical scrolling if content overflows */
    font-size: 16px;
}

.sidebar.open {
    left: 0;
}

.sidebar a {
    display: block;
    color: #fff;
    padding: 10px 15px;
    text-decoration: none;
    text-transform: uppercase;
    background: rgba(0, 0, 0, 0.1);
    margin: 5px 10px;
    border-radius: 8px;
    border: 2px solid #fff;
    transition: transform 0.2s, background 0.3s;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.sidebar a:hover {
    background: #ff9800; /* Orange pop */
    transform: scale(1.05) rotate(2deg); /* Fun tilt */
}

/* Sidebar Button */
.menu-btn {
    font-size: 35px;
    cursor: pointer;
    background: #ffeb3b; /* Yellow */
    border: 4px solid #000;
    border-radius: 50%;
    padding: 10px 15px;
    position: fixed;
    top: 15px;
    left: 15px;
    z-index: 1002; /* Above sidebar */
    transition: transform 0.3s;
}

.menu-btn:hover {
    transform: rotate(90deg); /* Spin on hover */
}

/* Main Content */
.content {
    padding: 40px;
    transition: margin-left 0.4s ease-in-out;
    width: 100%; /* Ensure full width on mobile */
    box-sizing: border-box; /* Include padding in width */
}

.content.shift {
    margin-left: 220px;
}

/* Top Buttons */
.top-buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 10px auto;
    max-width: 90%;
    flex-wrap: wrap;
}

.top-button {
    background: #4caf50; /* Green for default (e.g., Subscribe) */
    color: #fff;
    padding: 12px 25px; /* Increased for consistency with Shop and Characters */
    border-radius: 25px; /* Increased for consistency with Shop and Characters */
    border: 4px solid #000; /* Increased for consistency with Shop and Characters */
    font-weight: bold;
    font-size: 16px;
    text-decoration: none;
    transition: transform 0.2s, background 0.3s;
    box-shadow: 3px 3px 0 #2196f3; /* Blue shadow, consistent */
}

.top-button:hover {
    background: #f44336; /* Red */
    transform: scale(1.1) translateY(-5px); /* Pop up */
}

.subscribe-button {
    background: #4caf50; /* Green, distinct from others */
}

.characters-button {
    background: #2196f3; /* Bright blue, consistent */
}

.merch-button {
    background: #ff9800; /* Orange, consistent */
}

/* Comic Title */
.comic-title {
    background: linear-gradient(90deg, #ffeb3b, #ff9800); /* Gradient matching body */
    border: 8px solid #000; /* Thicker border for emphasis */
    border-radius: 15px; /* Rounded but not too curvy */
    padding: 15px 30px; /* Reduced padding for mobile */
    margin: 0 auto 20px; /* Reduced margin for mobile */
    width: fit-content;
    max-width: 90%; /* More flexible width on mobile */
    box-shadow: 5px 5px 0 #2196f3; /* Smaller shadow for mobile */
    text-align: center;
    position: relative;
}

.comic-title h1 {
    font-size: 40px; /* Reduced for mobile readability */
    color: #fff;
    margin: 0;
    line-height: 1;
    text-transform: uppercase; /* Bold comic style */
}

/* Subtitle */
.subtitle {
    font-size: 20px; /* Reduced for mobile */
    color: #ff5722; /* Ties into gradient */
    margin: 0 0 10px; /* Reduced margin for mobile */
    text-align: center;
}

/* Comic Wrapper for Animation */
.comic-wrapper {
    overflow: hidden; /* Contain the sliding effect */
    width: 100%; /* Ensure full width */
}

/* Comic Container */
.comic-container {
    margin: 20px auto; /* Reduced margin for mobile */
    width: 90%; /* Wider on mobile to fit screen */
    max-width: 100%; /* Override max-width for mobile */
    background: #fff;
    padding: 15px; /* Reduced padding for mobile */
    border: 4px solid #000; /* Thinner border for mobile */
    border-radius: 10px; /* Slightly smaller radius for mobile */
    box-shadow: 5px 5px 0 #ff5722; /* Smaller shadow for mobile */
    transform: rotate(-1deg); /* Tilt kept for content fun */
    text-align: center;
    transition: transform 0.5s ease; /* For slide animation */
    box-sizing: border-box; /* Include padding/border in width */
}

.comic-container p {
    font-size: 16px; /* Reduced for mobile readability */
    line-height: 1.4; /* Tighter line height for mobile */
    color: #333;
}

.comic-container img {
    width: 100%;
    height: auto;
    border: 3px solid #000; /* Thinner border for mobile */
    border-radius: 8px; /* Smaller radius for mobile */
    box-shadow: 3px 3px 0 #2196f3; /* Smaller shadow for mobile */
    /* No transition since no hover effect */
}

/* No hover transform effect for comic images */
.comic-container img:hover {
    /* Empty to ensure no scaling */
}

.comic-container.slide-out {
    transform: translateX(-100%);
}

.comic-container.slide-in {
    transform: translateX(0);
}

/* Navigation Buttons - Centered */
.nav-buttons {
    margin-top: 15px; /* Reduced for mobile */
    text-align: center;
}

.nav-buttons a {
    text-decoration: none;
    background: #4caf50; /* Green */
    color: #fff;
    padding: 10px 20px; /* Reduced padding for mobile */
    border-radius: 20px; /* Slightly smaller radius for mobile */
    font-weight: bold;
    margin: 8px; /* Reduced margin for mobile */
    display: inline-block;
    border: 3px solid #000; /* Thinner border for mobile */
    transition: transform 0.2s, background 0.3s;
}

.nav-buttons a:hover {
    background: #f44336; /* Red */
    transform: scale(1.1) translateY(-5px); /* Pop up */
}

/* Social Links */
.social-links {
    margin-top: 20px; /* Reduced for mobile */
    text-align: center;
}

.social-links a {
    margin: 8px; /* Reduced margin for mobile */
    display: inline-block;
}

.social-links img {
    width: 50px; /* Reduced for mobile */
    height: 50px; /* Reduced for mobile */
    border: 3px solid #000; /* Thinner border for mobile */
    border-radius: 50%;
    transition: transform 0.3s ease;
    box-shadow: 3px 3px 0 #2196f3; /* Smaller shadow for mobile */
}

.social-links img:hover {
    transform: scale(1.2) rotate(10deg); /* Bigger and tilted */
}

/* Speech Bubble Notification */
.speech-bubble {
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translateX(-50%);
    background: #ffeb3b;
    border: 4px solid #000;
    border-radius: 15px;
    padding: 10px 20px;
    font-size: 20px;
    text-transform: uppercase;
    color: #ff5722;
    display: none; /* Hidden by default */
    z-index: 1002;
}

.speech-bubble::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    border: 10px solid transparent;
    border-top: 10px solid #000;
}

.speech-bubble.active {
    display: block;
    animation: popIn 3s ease-in-out;
}

@keyframes popIn {
    0% { opacity: 0; transform: translateX(-50%) scale(0.8); }
    20% { opacity: 1; transform: translateX(-50%) scale(1.1); }
    80% { opacity: 1; transform: translateX(-50%) scale(1); }
    100% { opacity: 0; transform: translateX(-50%) scale(0.8); }
}

/* Lightbox Effect */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.full-img {
    max-width: 90%;
    max-height: 90%;
    border: 4px solid #ffeb3b; /* Thinner border for mobile */
    border-radius: 8px; /* Smaller radius for mobile */
    box-shadow: 0 0 10px #ff5722; /* Smaller shadow for mobile */
}

/* Comic Archive */
.comic-archive {
    margin: 20px auto;
    width: 90%;
    max-width: 900px;
    text-align: center;
}

.archive-thumbs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}

.thumb-img {
    width: 120px;
    height: auto;
    border: 3px solid #000;
    border-radius: 8px;
    box-shadow: 3px 3px 0 #2196f3; /* Blue shadow to match theme */
    transition: transform 0.2s ease; /* Optional hover effect */
}

.thumb-img:hover {
    transform: scale(1.1); /* Slight zoom on hover, optional */
}

/* Character Bios (Updated for Grid Layout) */
.character-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); /* Responsive grid */
    gap: 20px;
    padding: 20px;
    justify-items: center;
    max-width: 900px;
    margin: 0 auto;
}

.character-bio {
    text-align: center;
    position: relative;
}

.char-img {
    width: 150px;
    height: auto;
    border: 3px solid #000;
    border-radius: 10px;
    box-shadow: 3px 3px 0 #2196f3;
    transition: opacity 0.3s ease; /* Subtle hover effect */
}

.char-img:hover {
    opacity: 0.8; /* Dim on hover instead of scaling */
}

.character-bio h3 {
    font-size: 20px;
    color: #ff5722;
    margin: 5px 0;
}

/* Dynamic Tooltip for Character Bios (Positioned by JavaScript) */
.tooltip {
    position: absolute;
    background: #ffeb3b;
    border: 3px solid #000;
    border-radius: 10px;
    padding: 5px 10px;
    font-size: 14px;
    color: #333;
    z-index: 1004;
    white-space: nowrap;
    box-shadow: 2px 2px 0 #2196f3;
    display: none;
    pointer-events: none; /* Ensure it doesn’t interfere with mouse events */
}

/* Behind the Scenes */
.behind-list {
    list-style: none;
    padding: 0;
    text-align: left;
    margin: 15px auto;
    width: 80%;
    font-size: 16px;
    color: #333;
}

.behind-list li {
    margin: 10px 0;
    position: relative;
    padding-left: 20px;
}

/* Challenge Section */
.challenge-section {
    margin: 20px auto;
    width: 90%;
    max-width: 600px;
    background: #fff;
    padding: 15px;
    border: 4px solid #000;
    border-radius: 15px;
    box-shadow: 5px 5px 0 #2196f3;
    transform: rotate(-1deg);
    text-align: center;
}

.challenge-button {
    display: inline-block;
    background: #ff9800;
    color: #fff;
    padding: 12px 25px;
    border-radius: 25px;
    border: 3px solid #000;
    font-weight: bold;
    margin: 10px;
    text-decoration: none;
    transition: transform 0.2s, background 0.3s;
}

.challenge-button:hover {
    background: #f44336;
    transform: scale(1.1) translateY(-5px);
}

/* Subscription Form Container */
.subscribe-form {
    margin: 20px auto;
    width: 90%;
    max-width: 600px; /* Limit width for readability */
    background: #fff;
    padding: 15px;
    border: 4px solid #000;
    border-radius: 15px;
    box-shadow: 5px 5px 0 #2196f3; /* Blue shadow to match theme */
    transform: rotate(-1deg); /* Tilt for fun */
    text-align: center;
    box-sizing: border-box;
}

.subscribe-form .subtitle {
    margin-bottom: 10px;
}

.subscribe-form p {
    font-size: 16px;
    line-height: 1.4;
    color: #333;
    margin-top: 10px;
}

/* Subscription Input and Button */
.email {
    padding: 10px;
    font-size: 16px;
    border: 2px solid #000;
    border-radius: 20px;
    width: 60%;
    margin-right: 10px;
    font-family: 'Comic Sans MS', 'Arial', sans-serif;
    box-shadow: 2px 2px 0 #ff5722; /* Orange shadow for fun */
}

.subscribe-button {
    background: #4caf50; /* Green, consistent with top button */
    color: #fff;
    padding: 12px 25px; /* Match top button padding */
    border-radius: 25px; /* Match top button border radius */
    border: 4px solid #000; /* Match top button border width */
    font-weight: bold;
    font-size: 16px;
    font-family: 'Comic Sans MS', 'Arial', sans-serif;
    cursor: pointer;
    transition: transform 0.2s, background 0.3s;
    box-shadow: 3px 3px 0 #2196f3; /* Match top button shadow */
}

.subscribe-button:hover {
    background: #f44336; /* Red, consistent with top buttons */
    transform: scale(1.1) translateY(-5px); /* Pop up, consistent */
}

/* Merch Items */
.merch-items {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 20px;
}

.merch-img {
    width: 200px;
    height: auto;
    border: 4px solid #000;
    border-radius: 10px;
    box-shadow: 5px 5px 0 #2196f3; /* Blue shadow to match theme */
    margin: 10px;
    transition: transform 0.2s ease; /* For hover effect */
}

.merch-img:hover {
    transform: scale(1.1); /* Slight zoom on hover for merch items only */
}

/* Shop Button */
.shop-button {
    display: inline-block;
    background: #ff9800; /* Orange to match gradient */
    color: #fff;
    padding: 12px 25px; /* Match top button padding */
    border-radius: 25px; /* Match top button border radius */
    border: 4px solid #000; /* Match top button border width */
    font-weight: bold;
    margin: 10px;
    text-decoration: none;
    transition: transform 0.2s, background 0.3s;
}

.shop-button:hover {
    background: #f44336; /* Red for consistency */
    transform: scale(1.1) translateY(-5px); /* Pop up like nav buttons */
}

/* Coming Soon Page */
.coming-soon-container {
    margin: 20px auto;
    width: 90%;
    max-width: 600px;
    background: #fff;
    padding: 20px;
    border: 6px solid #000; /* Thicker border for emphasis */
    border-radius: 15px;
    box-shadow: 8px 8px 0 #2196f3; /* Larger blue shadow for comic pop */
    transform: rotate(-2deg); /* Extra tilt for fun */
    text-align: center;
    position: relative;
    transition: transform 0.5s ease; /* For slide animation */
}

.coming-soon-container h2 {
    font-size: 32px;
    color: #ff5722;
    margin: 0 0 15px;
    text-transform: uppercase;
}

.coming-soon-container p {
    font-size: 18px;
    line-height: 1.5;
    color: #333;
    margin-bottom: 20px;
}

.coming-soon-text {
    font-size: 48px; /* Large, bold comic text */
    color: #ffeb3b;
    margin: 10px 0;
    animation: bounce 2s infinite; /* Comic bounce effect */
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

/* Countdown Timer */
.countdown {
    font-size: 24px;
    color: #4caf50;
    margin: 15px 0;
}

.countdown span {
    font-weight: bold;
    color: #f44336; /* Red for emphasis */
}

/* Blog-Style Behind the Scenes Containers */
.blog-post-container {
    margin: 20px auto;
    width: 90%;
    max-width: 900px;
    text-align: center;
}

.blog-post {
    margin-bottom: 30px; /* Space between posts */
}

.blog-post .comic-container {
    margin: 15px auto; /* Reduced margin for blog posts */
    width: 100%; /* Full width within max-width */
    max-width: 100%; /* Ensure no overflow */
    background: #fff;
    padding: 15px; /* Reduced padding for mobile */
    border: 4px solid #000; /* Thinner border for mobile */
    border-radius: 10px; /* Slightly smaller radius for mobile */
    box-shadow: 5px 5px 0 #ff5722; /* Smaller shadow for mobile */
    transform: rotate(-1deg); /* Tilt kept for content fun */
    text-align: center;
    transition: transform 0.5s ease; /* For slide animation */
    box-sizing: border-box; /* Include padding/border in width */
}

.blog-post .comic-container h3 {
    font-size: 22px; /* Slightly larger for blog titles */
    color: #ff5722;
    margin: 0 0 10px;
    text-transform: uppercase; /* Bold comic style */
}

.blog-post .comic-container p {
    font-size: 16px; /* Reduced for mobile readability */
    line-height: 1.4; /* Tighter line height for mobile */
    color: #333;
    margin: 0;
}

.blog-post .comic-container::before {
    content: "BAM!";
    position: absolute;
    left: 10px;
    top: 10px;
    color: #ff5722;
    font-size: 14px;
    z-index: 1;
}

/* Remove old behind-list styles (no longer needed) */
.behind-list {
    display: none; /* Hide the old list style */
}

/* Responsive Adjustments for New Elements */
@media (max-width: 1024px) {
    .sidebar {
        width: 180px;
        left: -230px;
        padding-top: 50px;
        font-size: 14px;
    }
    .sidebar a {
        padding: 8px 12px;
        margin: 4px 8px;
        border: 2px solid #fff;
        font-size: 14px;
    }
    .content.shift {
        margin-left: 200px;
    }
    .top-buttons {
        gap: 8px;
        margin: 8px auto;
    }
    .top-button {
        padding: 8px 18px;
        font-size: 14px;
        border: 3px solid #000;
        box-shadow: 3px 3px 0 #2196f3;
    }
    .character-grid {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
        gap: 15px;
        padding: 15px;
    }
    .char-img {
        width: 140px;
        box-shadow: 4px 4px 0 #2196f3;
    }
    .character-bio h3 {
        font-size: 18px;
    }
    .tooltip {
        padding: 4px 9px;
        font-size: 13px;
        border: 3px solid #000;
        box-shadow: 2px 2px 0 #2196f3;
    }
    .comic-archive {
        width: 85%;
    }
    .thumb-img {
        width: 110px;
        box-shadow: 4px 4px 0 #2196f3;
    }
    .blog-post-container {
        width: 85%;
    }
    .blog-post .comic-container {
        margin: 12px auto;
        padding: 12px;
        border: 4px solid #000;
        box-shadow: 4px 4px 0 #ff5722;
    }
    .blog-post .comic-container h3 {
        font-size: 20px;
    }
    .blog-post .comic-container p {
        font-size: 15px;
    }
    .blog-post .comic-container::before {
        font-size: 12px;
    }
    .behind-list {
        width: 85%;
        font-size: 15px;
    }
    .behind-list li {
        margin: 8px 0;
        padding-left: 18px;
    }
    .behind-list li::before {
        font-size: 13px;
    }
    .challenge-section {
        width: 85%;
        padding: 12px;
        border: 4px solid #000;
        box-shadow: 4px 4px 0 #2196f3;
    }
    .challenge-button {
        padding: 10px 20px;
        border: 3px solid #000;
    }
    .subscribe-form {
        width: 85%;
        padding: 12px;
        border: 4px solid #000;
        box-shadow: 4px 4px 0 #2196f3;
    }
    .email {
        width: 65%;
        padding: 8px;
        font-size: 15px;
        border: 2px solid #000;
        box-shadow: 2px 2px 0 #ff5722;
    }
    .subscribe-button {
        padding: 8px 18px;
        font-size: 15px;
        border: 2px solid #000;
        box-shadow: 2px 2px 0 #2196f3;
    }
    .merch-img {
        width: 180px;
        box-shadow: 4px 4px 0 #2196f3;
    }
    .shop-button {
        padding: 10px 20px;
        border: 3px solid #000;
    }
    .coming-soon-container {
        width: 85%;
        padding: 15px;
        border: 5px solid #000;
        box-shadow: 6px 6px 0 #2196f3;
        transform: rotate(-1deg);
    }
    .coming-soon-container h2 {
        font-size: 28px;
    }
    .coming-soon-container p {
        font-size: 16px;
    }
    .coming-soon-text {
        font-size: 40px;
    }
    .countdown {
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    .sidebar {
        width: 160px;
        left: -210px;
        padding-top: 40px;
        font-size: 12px;
    }
    .sidebar a {
        padding: 6px 10px;
        margin: 3px 6px;
        border: 1px solid #fff;
        font-size: 12px;
    }
    .content.shift {
        margin-left: 180px;
    }
    .top-buttons {
        gap: 5px;
        margin: 5px auto;
    }
    .top-button {
        padding: 6px 15px;
        font-size: 12px;
        border: 2px solid #000;
        box-shadow: 2px 2px 0 #2196f3;
    }
    .character-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 10px;
        padding: 10px;
    }
    .char-img {
        width: 120px;
        border: 2px solid #000;
        box-shadow: 2px 2px 0 #2196f3;
    }
    .character-bio h3 {
        font-size: 18px;
    }
    .tooltip {
        padding: 3px 8px;
        font-size: 12px;
        border: 2px solid #000;
        box-shadow: 1px 1px 0 #2196f3;
    }
    .comic-title {
        padding: 10px 20px;
        max-width: 90%;
        box-shadow: 3px 3px 0 #2196f3;
    }
    .comic-title h1 {
        font-size: 36px;
    }
    .subtitle {
        font-size: 18px;
        margin: 0 0 8px;
    }
    .comic-container {
        margin: 15px auto;
        width: 95%;
        padding: 10px;
        border: 3px solid #000;
        box-shadow: 3px 3px 0 #ff5722;
    }
    .comic-container p {
        font-size: 14px;
        line-height: 1.3;
    }
    .comic-container img {
        border: 2px solid #000;
        box-shadow: 2px 2px 0 #2196f3;
    }
    .nav-buttons {
        margin-top: 10px;
    }
    .nav-buttons a {
        padding: 8px 15px;
        margin: 5px;
        border: 2px solid #000;
    }
    .social-links {
        margin-top: 15px;
    }
    .social-links img {
        width: 40px;
        height: 40px;
        border: 2px solid #000;
        box-shadow: 2px 2px 0 #2196f3;
    }
    .comic-archive {
        width: 90%;
    }
    .thumb-img {
        width: 90px;
        border: 2px solid #000;
        box-shadow: 2px 2px 0 #2196f3;
    }
    .blog-post-container {
        width: 90%;
    }
    .blog-post .comic-container {
        margin: 10px auto;
        padding: 10px;
        border: 3px solid #000;
        box-shadow: 3px 3px 0 #ff5722;
    }
    .blog-post .comic-container h3 {
        font-size: 18px;
    }
    .blog-post .comic-container p {
        font-size: 14px;
    }
    .blog-post .comic-container::before {
        font-size: 10px;
        left: 8px;
        top: 8px;
    }
    .behind-list {
        width: 90%;
        font-size: 14px;
    }
    .behind-list li {
        margin: 8px 0;
        padding-left: 15px;
    }
    .behind-list li::before {
        font-size: 12px;
    }
    .challenge-section {
        width: 95%;
        padding: 10px;
        border: 3px solid #000;
        box-shadow: 3px 3px 0 #2196f3;
    }
    .challenge-button {
        padding: 8px 15px;
        border: 2px solid #000;
    }
    .subscribe-form {
        width: 95%;
        padding: 10px;
        border: 3px solid #000;
        box-shadow: 3px 3px 0 #2196f3;
    }
    .email {
        width: 70%;
        padding: 8px;
        font-size: 14px;
        border: 2px solid #000;
        box-shadow: 1px 1px 0 #ff5722;
    }
    .subscribe-button {
        padding: 6px 15px; /* Reduced for mobile */
        font-size: 12px; /* Reduced for mobile */
        border: 2px solid #000; /* Thinner border */
        box-shadow: 2px 2px 0 #2196f3; /* Smaller shadow */
    }
    .merch-img {
        width: 150px;
        box-shadow: 3px 3px 0 #2196f3;
    }
    .shop-button {
        padding: 8px 15px;
        border: 2px solid #000;
    }
    .coming-soon-container {
        width: 95%;
        padding: 10px;
        border: 4px solid #000;
        box-shadow: 4px 4px 0 #2196f3;
        transform: rotate(0deg);
    }
    .coming-soon-container h2 {
        font-size: 24px;
    }
    .coming-soon-container p {
        font-size: 14px;
    }
    .coming-soon-text {
        font-size: 32px;
    }
    .countdown {
        font-size: 16px;
    }
    .speech-bubble {
        top: 10%;
        padding: 6px 12px;
        font-size: 14px;
        border: 2px solid #000;
        border-radius: 12px;
    }
    .speech-bubble::after {
        bottom: -12px;
        border-width: 6px;
    }
    .menu-btn {
        font-size: 30px;
        top: 10px;
        left: 10px;
        padding: 8px 12px;
    }
}

@media (max-width: 480px) {
    .sidebar {
        width: 140px;
        left: -190px;
        padding-top: 30px;
        font-size: 10px;
    }
    .sidebar a {
        padding: 4px 8px;
        margin: 2px 4px;
        border: 1px solid #fff;
        font-size: 10px;
    }
    .content.shift {
        margin-left: 160px;
    }
    .top-buttons {
        gap: 3px;
        margin: 3px auto;
    }
    .top-button {
        padding: 4px 12px;
        font-size: 10px;
        border: 1px solid #000;
        box-shadow: 1px 1px 0 #2196f3;
    }
    .character-grid {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
        gap: 8px;
        padding: 8px;
    }
    .char-img {
        width: 100px;
        border: 1px solid #000;
        box-shadow: 1px 1px 0 #2196f3;
    }
    .character-bio h3 {
        font-size: 16px;
    }
    .tooltip {
        padding: 2px 6px;
        font-size: 10px;
        border: 1px solid #000;
        box-shadow: 1px 1px 0 #2196f3;
    }
    .comic-title {
        padding: 8px 15px;
        max-width: 95%;
        box-shadow: 2px 2px 0 #2196f3;
    }
    .comic-title h1 {
        font-size: 30px;
    }
    .comic-container {
        margin: 10px auto;
        width: 98%;
        padding: 8px;
        border: 2px solid #000;
        box-shadow: 2px 2px 0 #ff5722;
    }
    .nav-buttons a {
        padding: 6px 12px;
        margin: 3px;
        border: 2px solid #000;
    }
    .social-links img {
        width: 35px;
        height: 35px;
        border: 2px solid #000;
        box-shadow: 2px 2px 0 #2196f3;
    }
    .comic-archive {
        width: 95%;
    }
    .thumb-img {
        width: 80px;
        border: 1px solid #000;
        box-shadow: 1px 1px 0 #2196f3;
    }
    .blog-post-container {
        width: 95%;
    }
    .blog-post .comic-container {
        margin: 8px auto;
        padding: 8px;
        border: 2px solid #000;
        box-shadow: 2px 2px 0 #ff5722;
    }
    .blog-post .comic-container h3 {
        font-size: 16px;
    }
    .blog-post .comic-container p {
        font-size: 12px;
    }
    .blog-post .comic-container::before {
        font-size: 8px;
        left: 6px;
        top: 6px;
    }
    .behind-list {
        width: 95%;
        font-size: 12px;
    }
    .behind-list li {
        margin: 5px 0;
        padding-left: 10px;
    }
    .behind-list li::before {
        font-size: 10px;
    }
    .challenge-section {
        width: 98%;
        padding: 8px;
        border: 2px solid #000;
        box-shadow: 2px 2px 0 #2196f3;
    }
    .challenge-button {
        padding: 6px 12px;
        border: 1px solid #000;
    }
    .subscribe-form {
        width: 98%;
        padding: 8px;
        border: 2px solid #000;
        box-shadow: 2px 2px 0 #2196f3;
    }
    .email {
        width: 80%;
        padding: 6px;
        font-size: 12px;
        border: 1px solid #000;
        box-shadow: 1px 1px 0 #ff5722;
    }
    .subscribe-button {
        padding: 4px 10px; /* Minimal padding for tiny phones */
        font-size: 10px; /* Minimal font size */
        border: 1px solid #000; /* Thinnest border */
        box-shadow: 1px 1px 0 #2196f3; /* Smallest shadow */
    }
    .merch-img {
        width: 130px;
        box-shadow: 2px 2px 0 #2196f3;
    }
    .shop-button {
        padding: 6px 12px;
        border: 1px solid #000;
    }
    .coming-soon-container {
        width: 98%;
        padding: 8px;
        border: 3px solid #000;
        box-shadow: 2px 2px 0 #2196f3;
    }
    .coming-soon-container h2 {
        font-size: 20px;
    }
    .coming-soon-container p {
        font-size: 12px;
    }
    .coming-soon-text {
        font-size: 24px;
    }
    .countdown {
        font-size: 14px;
    }
    .speech-bubble {
        top: 5%;
        padding: 4px 10px;
        font-size: 12px;
        border: 2px solid #000;
        border-radius: 10px;
    }
    .speech-bubble::after {
        bottom: -10px;
        border-width: 5px;
    }
}